home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Rexx / SuperView_EXPORT.rexx < prev    next >
OS/2 REXX Batch file  |  2000-05-08  |  579b  |  26 lines

  1. /*
  2. ** EXPORTS A PICTURE FROM PictureManager into SuperView
  3. **
  4. ** (c) 1995 J. Schaefer / A. Kleinert   -   ALL RIGHTS RESERVED
  5. **
  6. **
  7. **
  8. ** NOTE: If you write your own AREXX-script to export pictures from
  9. **       Picture Manager Professional to any programs,
  10. **       change the path and filename of the file to process
  11. **       to PicManFile (see below, CASE SENSITIVE!!!)
  12. **
  13. **       Read the PictureManager manual for more information
  14. **
  15. **
  16. **
  17.  
  18. /* Load the Picture */ 
  19.  
  20. ADDRESS 'SuperView.rx'
  21. "OPEN_GUI"
  22. SVCommand = "LOAD=" || PicManFile
  23. address 'SuperView.rx' SVCommand
  24.  
  25. EXIT
  26.